home *** CD-ROM | disk | FTP | other *** search
/ Info-Mac 4 / Info_Mac IV CD-ROM (Pacific HiTech Inc.)(August 1994).iso / Development / Source / MSG Demo 1.4.source Folder / Demo ƒ / Wipes ƒ / Circle in.c < prev    next >
Text File  |  1994-04-15  |  3KB  |  96 lines

  1. /**********************************************************************\
  2.  
  3. File:        Circle in.c
  4.  
  5. Purpose:    Graphic effect from offscreen bitmap to main window (on
  6.             screen).  See comments below for more description.
  7.  
  8. This program is free software; you can redistribute it and/or modify
  9. it under the terms of the GNU General Public License as published by
  10. the Free Software Foundation; either version 2 of the License, or
  11. (at your option) any later version.
  12.  
  13. This program is distributed in the hope that it will be useful,
  14. but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  16. GNU General Public License for more details.
  17.  
  18. You should have received a copy of the GNU General Public License
  19. along with this program in a file named "GNU General Public License".
  20. If not, write to the Free Software Foundation, 675 Mass Ave,
  21. Cambridge, MA 02139, USA.
  22.  
  23. \**********************************************************************/
  24.  
  25. #include "timing.h"
  26.  
  27. #define    gap            4        /* difference between one radius and the next */
  28. #define CorrectTime 2
  29. #define theWindowHeight (boundsRect.bottom-boundsRect.top)
  30. #define theWindowWidth (boundsRect.right-boundsRect.left)
  31.  
  32. pascal short CircleIn(GrafPtr sourceGrafPtr, GrafPtr destGrafPtr, Rect boundsRect);
  33.  
  34. /* Take a really big circle, then a slightly smaller circle (-gap), then
  35.    take the region in between them and copy that, then decrease the outer
  36.    circle radius by gap.  Thus: circle in, by successive donut-like copies. */
  37.  
  38. pascal short CircleIn(GrafPtr sourceGrafPtr, GrafPtr destGrafPtr, Rect boundsRect)
  39. {
  40.     Rect            theRect;
  41.     int                cx, cy;
  42.     RgnHandle        curregion,lastregion,diffregion;
  43.     Point            zeroPoint;
  44.     int                StartRadius;
  45.     
  46.     zeroPoint.h=boundsRect.left;
  47.     zeroPoint.v=boundsRect.top;
  48.  
  49.     cx = theWindowWidth / 2;
  50.     cy = theWindowHeight / 2;
  51.     
  52.     lastregion=NewRgn();
  53.     StartRadius=0;
  54.     do
  55.     {
  56.         StartRadius+=2*gap;
  57.         theRect.left=cx-StartRadius;     /* circumscribing rectangle for outer circle */
  58.         theRect.right=cx+StartRadius;
  59.         theRect.top=cy-StartRadius;
  60.         theRect.bottom=cy+StartRadius;
  61.         OffsetRect(&theRect, boundsRect.left, boundsRect.top);
  62.         SetEmptyRgn(lastregion);
  63.         OpenRgn();
  64.             FrameOval(&theRect);        /* first circle */
  65.         CloseRgn(lastregion);
  66.     }
  67.     while (!PtInRgn(zeroPoint, lastregion));
  68.     
  69.     curregion=NewRgn();
  70.     diffregion=NewRgn();
  71.  
  72.     while (theRect.right-theRect.left>0)
  73.     {
  74.         StartTiming();
  75.         theRect.left+=gap;
  76.         theRect.right-=gap;
  77.         theRect.top+=gap;
  78.         theRect.bottom-=gap;
  79.         SetEmptyRgn(curregion);
  80.         OpenRgn();
  81.             FrameOval(&theRect);   /* inner circle */
  82.         CloseRgn(curregion);
  83.         DiffRgn(lastregion,curregion,diffregion);   /* donut we need */
  84.         CopyBits(&(sourceGrafPtr->portBits), &(destGrafPtr->portBits),
  85.                 &boundsRect, &boundsRect, 0, diffregion);
  86.         CopyRgn(curregion,lastregion);    /* outer circle = inner circle */
  87.         TimeCorrection(CorrectTime);
  88.     }
  89.     
  90.     DisposeRgn(curregion);
  91.     DisposeRgn(lastregion);
  92.     DisposeRgn(diffregion);
  93.     
  94.     return 0;
  95. }
  96.